home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form DBLocForm
- BorderStyle = 3 'Fixed Dialog
- Caption = "Path to LOGLOCK.MDB Sample Database"
- ClientHeight = 2535
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5250
- Icon = "DBLocForm.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2535
- ScaleWidth = 5250
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton CancelBtn
- Cancel = -1 'True
- Caption = "&Cancel"
- Height = 375
- Left = 3840
- TabIndex = 2
- Top = 2040
- Width = 1095
- End
- Begin VB.CommandButton OKBtn
- Caption = "&OK"
- Default = -1 'True
- Height = 375
- Left = 2610
- TabIndex = 1
- Top = 2040
- Width = 1095
- End
- Begin VB.TextBox DBPath
- Height = 345
- Left = 360
- TabIndex = 0
- Top = 1470
- Width = 4545
- End
- Begin VB.Label Label1
- Caption = $"DBLocForm.frx":000C
- Height = 1095
- Left = 360
- TabIndex = 3
- Top = 210
- Width = 4515
- End
- Attribute VB_Name = "DBLocForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public ModalResult As VbMsgBoxResult
- Public DatabasePath As String
- Private Sub CancelBtn_Click()
- DatabasePath = ""
- Unload Me
- End Sub
- Private Sub Form_Load()
- ModalResult = vbCancel
- End Sub
- Private Sub OKBtn_Click()
- DatabasePath = DBPath.Text
- ModalResult = vbOK
- Unload Me
- End Sub
-